home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
tutor
/
c1tutor.exe
/
ONEINT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1987-07-04
|
230b
|
11 lines
main()
{
int index;
index = 13;
printf("The value of the index is %d\n",index);
index = 27;
printf("The value of the index is %d\n",index);
index = 10;
printf("The value of the index is %d\n",index);
}